Scheduler for WPF and Silverlight | ComponentOne
C1.C1Schedule Namespace / BaseList<T> Class
The type of the objects which will be stored in the list. It should be derived from the BasePersistableObject class.
Members

In This Topic
    BaseList<T> Class
    In This Topic
    The BaseList<T> is a base generic class for all lists in C1Schedule's object model. Only objects existing in the owning collection can be added to this list.
    Object Model
    BaseList<T> Class
    Syntax
    'Declaration
     
    
    Public Class BaseList(Of T As BasePersistableObject) 
       Inherits C1ObservableCollection(Of T)
    public class BaseList<T> : C1ObservableCollection<T> 
    where T: BasePersistableObject
    Type Parameters
    T
    The type of the objects which will be stored in the list. It should be derived from the BasePersistableObject class.
    Inheritance Hierarchy

    System.Object
       System.Collections.ObjectModel.Collection<T>
          C1.C1Schedule.C1ObservableCollection<T>
             C1.C1Schedule.BaseList<T>
                C1.C1Schedule.CategoryList
                C1.C1Schedule.ContactList
                C1.C1Schedule.LabelList
                C1.C1Schedule.ResourceList
                C1.C1Schedule.StatusList

    See Also